package net.callumtaylor.asynchttp.response; public abstract class StringResponseHandler extends AsyncHttpResponseHandler { private StringBuffer stringBuffer; @Override public void onPublishedDownloadProgress(byte[] chunk, int chunkLength, long totalProcessed, long totalLength) { if (stringBuffer == null) { int total = (int)(totalLength > Integer.MAX_VALUE ? Integer.MAX_VALUE : totalLength); stringBuffer = new StringBuffer(Math.max(8192, total)); } if (chunk != null) { try { stringBuffer.append(new String(chunk, 0, chunkLength, "UTF-8")); } catch (Exception e) { e.printStackTrace(); } } } /** * Processes the response from the stream. * This is <b>not</b> ran on the UI thread * * @return The data represented as a String */ @Override public String getContent() { return stringBuffer.toString(); } }